home *** CD-ROM | disk | FTP | other *** search
- GetType(h : Handle) : INTEGER;
-
- Returns the object type that h is connected to.
-
- GetName(h : Handle) : STRING;
-
- Returns the name of the object that h is connected to.
-
- GetClass(h : Handle) : STRING;
-
- Returns the class of the object that h is connected to.
-
- GetBBox(h : Handle; VAR X1, Y1, X2, Y2 : REAL);
-
- Receives a handle to an object and returns the coodinates of the bounding box in X1, Y1, X2, Y2.
-
- GetFPat(h : Handle) : INTEGER;
-
- Returns the fill pattern of the object connected to h.
-
- GetLW(h : Handle) : INTEGER;
-
- Returns the line weight, in mils, of the object connected to h.
-
- GetLS(h : Handle) : INTEGER;
-
- Returns the line style of the object that is connected to h.
-
- GetFont(h : Handle) : INTEGER;
-
- Returns font ID of text connected to h.
-
- GetSize(h : Handle) : INTEGER;
-
- Returns point size of text connected to h.
-
- GetStyle(h : Handle) : INTEGER;
-
- Returns style of text connected to h.
-
- Selected(h : Handle) : BOOLEAN;
-
- Returns TRUE if the object that is connected to h is selected, otherwise it returns FALSE.
-
- GetText(h : Handle) : STRING;
-
- Returns the text within a text object that h is connected to.
-
- GetSegPt1(h : Handle; VAR X, Y : REAL);
-
- Returns the first end point of a line that h is connected to.
-
- GetSegPt2(h : Handle; VAR X, Y : REAL);
-
- Returns the second end point of a line that h is connected to.
-
- HasDim(h : Handle) : BOOLEAN;
-
- Returns TRUE if the object connected to h has dimension text, otherwise it returns FALSE.
-
- GetDimText(h : Handle) : STRING;
-
- Returns the dimension text of the object that is connected to h.
-
- GetSymName(h : Handle) : STRING;
-
- Returns the symbol name of the symbol that is connected to h.
-
- GetSymRot(h : Handle) : REAL;
-
- Returns the rotation of a symbol instance that is connected to h.
-
- GetLocPt(h : Handle; VAR X,Y : REAL);
-
- Returns the X, Y coordinate of a locus that is connected to h.
-
- GetRRDiam(h : Handle; VAR HorDiameter, VerDiameter : REAL);
-
- Returns the horizontal and vertical diameters of a rounded corner of a Rounded Rectangle that is connected to h.
-
- GetArc(h : Handle; VAR StartAngle, ArcAngle : REAL);
-
- Returns the start angle and arc angle of an arc that is connected to h.
-
- GetVertNum(h : Handle) : INTEGER;
-
- Returns the number of vertices in the polygon that h is connected to.
-
- GetPolyPt(ObjectHandle : HANDLE; Index : INTEGER; VAR X, Y : REAL);
-
- Returns the X, Y location of the Index’th vertex of the polygon that h is connected to.
-
- Get3DCntr(h : Handle; VAR X, Y, Z : REAL);
-
- Returns the X, Y, Z center of a 3D object that is connected to h.
-
- Get3DInfo(h : Handle; VAR Height, Width, Depth : REAL);
-
- Returns the Height, Width, Depth of a 3D object that is connected to ObjectHandle.
-
- SprdSize(h : Handle; VAR Rows, Columns : INTEGER);
-
- Returns the number of rows and columns of a spreadsheet that is connected to h.
-
- CellHasNum(h : Handle; Row, Column : INTEGER) : BOOLEAN;
-
- Returns TRUE if the spreadsheet cell specified by Row, Column contains a number; otherwise it returns FALSE.
-
- CellHasStr(h : Handle; Row, Column : INTEGER) : BOOLEAN;
-
- Returns TRUE if the spreadsheet cell specified by Row, Column contains a string; otherwise it returns FALSE.
-
- GetCellStr(h : Handle; Row, Column : INTEGER) : STRING;
-
- Returns the string contained in the spreadsheet cell specified by Row, Column.
-
- GetCellNum(h : Handle; Row, Column : INTEGER) : REAL;
-
- Returns the number contained in the spreadsheet cell specified by Row, Column.
-
- GetCWidth(h : Handle; Row, Column : INTEGER) : INTEGER;
-
- Returns the width of the spreadsheet cell specified by Row, Column.
-
- GetCAlign(h : Handle; Row, Column : INTEGER) : INTEGER;
-
- Returns the alignment of the spreadsheet cell specified by Row, Column.
-
- HArea(h : Handle) : REAL;
-
- Returns the area of the object that is connected to h.
-
- HPerim(h : Handle) : REAL;
-
- Returns the perimeter of the object that is connected to h.
-
- HLength(h : Handle) : REAL;
-
- Returns the length of the object that is connected to h.
-
- HWidth(h : Handle) : REAL;
-
- Returns the width of the object that is connected to h.
-
- HHeight(h : Handle) : REAL;
-
- Returns the height of the object that is connected to h.
-
- HAngle(h : Handle) : REAL;
-
- Returns the angle of the object that is connected to h.
-
- HCenter(h : Handle; VAR X, Y : REAL);
-
- Returns the X, Y center of the object that is connected to h.
-
-